home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19950726-19950929 / 000267_news@columbia.edu_Thu Aug 31 21:47:14 1995.msg < prev    next >
Internet Message Format  |  1995-12-25  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05979
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 31 Aug 1995 17:47:22 -0400
  3. Received: by apakabar.cc.columbia.edu id AA26431
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 31 Aug 1995 17:47:20 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: File List for send ??
  9. Date: 31 Aug 1995 21:47:14 GMT
  10. Organization: Columbia University
  11. Lines: 26
  12. Message-Id: <425al2$ppi@apakabar.cc.columbia.edu>
  13. References: <4252hd$kiv@newsbf02.news.aol.com>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <4252hd$kiv@newsbf02.news.aol.com>,
  18. DanielWest <danielwest@aol.com> wrote:
  19. : I am trying to use a kermit script to back up PC-Data files to an AIX box
  20. : so that they will go to tape nightly. I am using my script to trigger
  21. : dos's Dir command and  am writing the results to a file. (I am doing this
  22. : so that I can include files in all sub-directories under my parent
  23. : directory.) 
  24. : How can I tell kermit to send the files in this list? (it's a clean list)
  25. : I seem to remember something in the manual about a file-list however; I
  26. : have been pageing through it for an hour and cannot find it. Something
  27. : like !(filename.XXX) or @(filename.XXX) or something....
  28. In MS-DOS Kermit 3.14, the current version, but not in earlier versions,
  29. you can:
  30.  
  31.   send @filename
  32.  
  33. where "filename" is the name of a file that contains a list of files.
  34.  
  35. The list of filenames can contain one filename per line, or it can contain a
  36. comma-separated list of names, or any mixture of the two.  Filenames can
  37. contain disk letters, directory names, and DOS-format wildcards.
  38.  
  39. - Frank
  40.